home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / computer-janitor-gtk < prev    next >
Text File  |  2009-10-12  |  1KB  |  35 lines

  1. #!/usr/bin/python
  2. #
  3. # computer-janitor-gtk - clean up a Unix-like operating system (GTK version)
  4. # Copyright (C) 2008, 2009  Canonical, Ltd.
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, version 3 of the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  
  18.  
  19. import logging
  20. import os
  21. import sys
  22. import traceback
  23.  
  24. import computerjanitor
  25. import computerjanitorapp
  26.  
  27.  
  28. try:
  29.     app = computerjanitorapp.Application()
  30.     app.run(computerjanitorapp.GtkUserInterface)
  31. except computerjanitor.Exception, e:
  32.     logging.debug(unicode(traceback.format_exc()))
  33.     logging.error(unicode(e))
  34.     sys.exit(1)
  35.